java 정리 java 기초 지식 포인트 정리 1) switch 문장: 케이스 문장 뒤에 브레이크가 없으면 계속 아래로 실행됩니다.예: 다음 방법은 입력이 2일 때public static igetValue(int i) {int result = 0; switch(i) {case 1: result = result + i;case 2: result = result + i * 2;case 3: result = result + i * 3;case... java 정리
java 기초 지식 포인트 정리 1) switch 문장: 케이스 문장 뒤에 브레이크가 없으면 계속 아래로 실행됩니다.예: 다음 방법은 입력이 2일 때public static igetValue(int i) {int result = 0; switch(i) {case 1: result = result + i;case 2: result = result + i * 2;case 3: result = result + i * 3;case... java 정리